home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVANEW.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  1KB  |  27 lines

  1. /*================================================*/
  2. /* TVANEW.C                                       */
  3. /*   functions to handle panel files              */
  4. /*                                                */
  5. /* (c) Copyright 1988 Ralf Brown                  */
  6. /*     All Rights Reserved                        */
  7. /* May be freely copied for noncommercial use,    */
  8. /* provided that this copyright notice remains    */
  9. /* intact and any changes are indicated in the    */
  10. /* comment blocks preceding functions             */
  11. /*================================================*/
  12.  
  13. #include "tvapi.h"
  14.  
  15. /*================================================*/
  16. /* TVpanel_new   create a new panel object        */
  17. /*   Ralf Brown 4/8/88                            */
  18. /*   Ralf Brown 6/21/88 rewrote with TVsendmsg1   */
  19. /*================================================*/
  20.  
  21. OBJECT pascal TVpanel_new(void)
  22. {
  23.    return (OBJECT) TVsendmsg1(NEW_MSG, PANEL_CLASS, 0) ;
  24. }
  25.  
  26. /* End of TVANEW.C */
  27.